53b0297899670c5ac7583a79b401891997c2c0f2,webapp/selenium-tests/src/test/java/com/autonomy/abc/find/HodFilterITCase.java,HodFilterITCase,testAuthor,#,83
Before Change
final String author = "FIFA.COM";
ResultsView results = findService.search(new Query("football")
.withFilter(new IndexFilter("fifa"))
.withFilter(new ParametricFilter("Author", author)));
assertThat(results.resultsDiv(), not(containsText(Errors.Find.GENERAL)));
After Change
ResultsView results = findService.search(new Query("football"));
filters().indexesTreeContainer().expand();
findPage.filterBy(new IndexFilter("fifa"));
findPage.filterBy(new ParametricFilter("Author", author));
assertThat(results.resultsDiv(), not(containsText(Errors.Find.GENERAL)));